Skip to main content

Delete Destination

Route

/v2/streaming/destinations/{destination_id}

Description

Delete a streaming destination. This operation permanently removes the destination and cannot be undone. Active streams to this destination will be stopped.

Method

DELETE

Inputs

ParameterTypeRequiredDescription
destination_idstringYesUnique identifier of the destination to delete

Path Parameters

  • destination_id: The unique identifier of the destination (provided in the URL path)

Request Example

DELETE /v2/streaming/destinations/dest-123

Output

FieldTypeDescription
deletedbooleanConfirmation that the destination was deleted
destination_idstringID of the deleted destination

Rate Limit

  • 60 requests per minute per API key
  • 5 concurrent requests per endpoint

Example Response

{
"deleted": true,
"destination_id": "dest-123"
}

Usage Notes

  • Deleting a destination will stop all active streams to that destination
  • This operation cannot be undone
  • Consider pausing streams before deletion to avoid data loss